home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / serial / callback.001 / callback~ / callback / lib / ttyline / resetactivetty.c < prev    next >
C/C++ Source or Header  |  1996-07-22  |  296b  |  11 lines

  1.  
  2. #include "ttyline.p"
  3.  
  4. void reset_active_tty()
  5. {
  6.     active_index =    
  7.         active_line == -1 ?         /* all lines are used ? */    
  8.             0                       /* then use index 0 next time */    
  9.         :    
  10.             active_line;            /* or use the active line */    
  11. }